home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / tool_inc.zip / ANSICOLR.DCL < prev    next >
Text File  |  1990-01-08  |  917b  |  36 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. {color selection constants}
  14. type
  15.    color_string = string8;
  16.  
  17. {default colors}
  18. const
  19.    ansi_ccolor:  color_string = 'none';
  20.  
  21.    ansi_colors:  array[0..8] of color_string =
  22.         ('0', '1;31', '1;32', '1;33', '1;34', '1;35', '1;36', '1;37', '0');
  23.  
  24.    ansi_default = 0;
  25.    ansi_red     = 1;
  26.    ansi_green   = 2;
  27.    ansi_yellow  = 3;
  28.    ansi_blue    = 4;
  29.    ansi_magenta = 5;
  30.    ansi_cyan    = 6;
  31.    ansi_white   = 7;
  32.    ansi_gray    = 8;
  33.  
  34.    graphics:     boolean = false;  {is graphics mode active?}
  35.    
  36.